home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-13 | 1.5 KB | 58 lines | [TEXT/MPS ] |
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _DGITMIT_
- #define _DGITMIT_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
- interface ODDragItemIterator;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
-
- interface ODStorageUnit;
-
- //=====================================================================================
- // Implementation Types
- //=====================================================================================
-
-
- //=====================================================================================
- // ODDragItemIterator
- //=====================================================================================
-
- interface ODDragItemIterator : ODObject
- {
- ODStorageUnit First();
- ODStorageUnit Next();
- ODBoolean IsNotComplete();
-
-
- #ifdef __SOMIDL__
- #ifdef _PLATFORM_MACINTOSH_
- implementation
- {
- functionprefix = ODDragItemIterator;
-
- override:
- somUninit;
-
- releaseorder:
- First,
- Next,
- IsNotComplete,
- reserved1;
-
- };
- #endif //# _PLATFORM_MACINTOSH_
- #endif //# __SOMIDL__
- };
-
- #endif // _DGITMIT_
-